Skip to main content
GET
/
api
/
productos
/
{id}
curl --location 'https://api.iquea.com/api/productos/1'
{
  "producto_id": 1,
  "sku": "IKEA-TABLE-001",
  "nombre": "Mesa de Comedor Moderna",
  "descripcion": "Mesa de comedor elegante con acabado en roble",
  "precioCantidad": 299.99,
  "precioMoneda": "USD",
  "dimensionesAlto": 75.0,
  "dimensionesAncho": 180.0,
  "dimensionesProfundo": 90.0,
  "es_destacado": true,
  "stock": 15,
  "imagen_url": "https://images.iquea.com/mesa-comedor-001.jpg",
  "categoria": {
    "categoria_id": 3,
    "nombre": "Mesas",
    "slug": "mesas"
  }
}

Authentication

This endpoint is publicly accessible and does not require authentication.

Path Parameters

id
long
required
The unique identifier of the product to retrieve

Response

Returns a single product object with complete details.
producto_id
long
Unique identifier for the product
sku
string
Stock Keeping Unit - unique product code
nombre
string
Product name
descripcion
string
Detailed product description
precioCantidad
decimal
Price amount
precioMoneda
string
Currency code (e.g., “USD”, “EUR”)
dimensionesAlto
double
Product height dimension
dimensionesAncho
double
Product width dimension
dimensionesProfundo
double
Product depth dimension
es_destacado
boolean
Whether the product is featured
stock
integer
Available quantity in inventory
imagen_url
string
URL to product image
categoria
object
Category information
curl --location 'https://api.iquea.com/api/productos/1'
{
  "producto_id": 1,
  "sku": "IKEA-TABLE-001",
  "nombre": "Mesa de Comedor Moderna",
  "descripcion": "Mesa de comedor elegante con acabado en roble",
  "precioCantidad": 299.99,
  "precioMoneda": "USD",
  "dimensionesAlto": 75.0,
  "dimensionesAncho": 180.0,
  "dimensionesProfundo": 90.0,
  "es_destacado": true,
  "stock": 15,
  "imagen_url": "https://images.iquea.com/mesa-comedor-001.jpg",
  "categoria": {
    "categoria_id": 3,
    "nombre": "Mesas",
    "slug": "mesas"
  }
}

Status Codes

200
OK
Successfully retrieved the product
404
Not Found
Product with the specified ID does not exist